home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
gnu
/
gawk
/
gawk213s.zoo
/
gawk-src-2.13
/
missing
/
gcvt.c
< prev
next >
Wrap
Text File
|
1991-05-06
|
130b
|
10 lines
char *
gcvt(value, digits, buff)
double value;
int digits;
char *buff;
{
sprintf(buff, "%.*g", digits, value);
return (buff);
}